Visual Studio keyboard short-cut to complete default accessors {get; set;}
        Posted  
        
            by Zamboni
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Zamboni
        
        
        
        Published on 2010-05-29T20:44:25Z
        Indexed on 
            2010/05/29
            20:52 UTC
        
        
        Read the original article
        Hit count: 277
        
I am looking for a keyboard short-cut to complete creating the default accessors for a property in a C# class.
Something like...
I start typing:
public int Id 
Then I press one or more keys, and I endup with:
public int Id { get; set; }
        © Stack Overflow or respective owner